home *** CD-ROM | disk | FTP | other *** search
- COMMENT %
- ============================================================================
- Data structure used to hold pointers to an object's ancestors, messages, and
- instance variables.
-
- ===========================================================================%
- _Object STRUC
- Objects DW Nil
- Messages DW Nil
- Instances DW Nil
- _Object ENDS
-
-
- COMMENT %
- ============================================================================
- Data structure used to hold pointers to a message's Before, Primary, and
- After methods.
-
- ===========================================================================%
- _Message STRUC
- Before DW Nil
- Primary DW Nil
- After DW Nil
- _Message ENDS
-
-
-